home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / doodle_d.swf / scripts / DefineButton2_156 / BUTTONCONDACTION on(release).as
Text File  |  2013-04-24  |  224b  |  13 lines

  1. on(release){
  2.    if(points >= ratePrice2 && laserSpeed > 4)
  3.    {
  4.       laserSpeed -= 2;
  5.       points -= ratePrice2;
  6.       ratePrice2 *= 2;
  7.       if(laserSpeed == 4)
  8.       {
  9.          ratePrice2 = 0;
  10.       }
  11.    }
  12. }
  13.